@charset "utf-8";
/* CSS Document */

/* 垂直布局 */
.v-layout {
    display: flex;
    flex-flow: column nowrap;
}

/* 垂直布局居中 */
.v-layout-c {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    justify-content: center;
}

/* 垂直布局横向居中 */
.v-layout-hc {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

/* 垂直布局垂直居中 */
.v-layout-vc {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

/* 水平布局 */
.h-layout {
    display: flex;
    flex-flow: row nowrap;
}

/* 垂直布局居中 */
.h-layout-c {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

/* 水平布局横向居中 */
.h-layout-hc {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

/* 水平布局垂直居中 */
.h-layout-vc {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

/* 权重1和 v-layout 和 h-layout搭配使用 */
.layout-weigt1 {
    flex: 1;
}

/* 只显示一行文本 */
.single-line {
    overflow: hidden;
    /*超出部分隐藏*/
    white-space: nowrap;
    /*不换行*/
    text-overflow: ellipsis; /*超出部分文字以...显示*/
}

/*内容垂直居中*/
.vertical-center {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

/*重置*/
html {
    min-width: 1180px;
}

body {
    padding: 0;
    margin: 0;
    font-family: "微软雅黑";
    min-width: 1200px;
    background: #f5f5f5;
    font-size: 16px;
}

img {
    border: none;
    display: block;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2 {
    font-weight: normal;
    margin: 0;
}

h1 {
    font-size: 24px;
    text-align: center;
    line-height: 50px;
}

h2 {
    text-align: center;
    font-size: 16px;
    color: #999;
}

a {
    text-decoration: none;
}

a:hover {
    cursor: pointer;
}

dl, dt, dd {
    list-style: none;
    padding: 0;
    margin: 0;
}

/**/
.content {
    width: 1200px;
    margin: 0 auto;
}

/*页脚*/
.foot-nav-box {
    height: 230px;
}

.abox {
    color: #A1A1A1;
    font-size: 14px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #494949;
}

.abox-bottom a {
    color: #a1a1a1;
    margin-right: 40px;
    display: block;
    margin-bottom: 10px;

}
.abox-bottom{
    width: 1160px;
}
.abox-bottom a:hover {
    color: #1eb3ff
}

.foot-nav-title {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 40px;
}

.foot-nav-cell {
    margin-right: 80px;
}

.foot-nav-cell a {
    color: #a1a1a1;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 14px;
}

.foot-nav-cell a:hover {
    color: #1eb3ff;
}

.foot-right {
    width: 380px;
    padding: 0 40px
}


.page-foot a {
    display: block;
    height: 40px;
    width: 40px;
    background: #f5f5f5;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    margin: 5px;
    border-radius: 4px;
}

.on-chose {
    color: #ffffff;
    background: #1eb3ff !important;
}

/*面包屑*/
.tree {
    margin: 30px 0
}

.tree-a {
    margin-left: 10px;
}

.tree-a a {
    color: #666;
    font-size: 14px;
}

.a-chosed {
    color: #333;
}


.xf_box {
    position: fixed;
    z-index: 999;
    right: 14vw;
    top: 420px
}

/*右侧悬浮*/
@media screen and (max-width: 1720px) {
    .xf_box {
        right: 0px;
    }
}

.qr_window {
    background: #ffffff;
    padding: 10px;
    position: absolute;
    top: 0;
    left: -108px;
}

.wx_window {
    background: #ffffff;
    padding: 10px;
    position: absolute;
    top: 56px;
    left: -108px;
}

.dh_window {
    background: #1696ee;
    color: #fff;
    position: absolute;
    top: 114px;
    text-align: center;
    left: -160px;
    height: 56px;
    width: 160px;
}

.erweima_box {
    cursor: pointer;
}

.weixin_box {
    cursor: pointer;
}

.backtop_box {
    cursor: pointer;
}
.logoimg-w{display: none}

.scroll-box {
    overflow-y: scroll;
}

::-webkit-scrollbar {
    display: none
}